type runtime.gclinkptr

15 uses

	runtime (current package)
		malloc.go#L931: func nextFreeFast(s *mspan) gclinkptr {
		malloc.go#L943: 			return gclinkptr(uintptr(result)*s.elemsize + s.base())
		malloc.go#L958: func (c *mcache) nextFree(spc spanClass) (v gclinkptr, s *mspan, checkGCTrigger bool) {
		malloc.go#L979: 	v = gclinkptr(uintptr(freeIndex)*s.elemsize + s.base())
		mcache.go#L65: 	next gclinkptr
		mcache.go#L70: type gclinkptr uintptr
		mcache.go#L75: func (p gclinkptr) ptr() *gclink {
		mcache.go#L80: 	list gclinkptr // linked list of free stacks
		mheap.go#L429: 	manualFreeList gclinkptr // list of free objects in mSpanManual spans
		stack.go#L194: func stackpoolalloc(order uint8) gclinkptr {
		stack.go#L213: 			x := gclinkptr(s.base() + i)
		stack.go#L240: func stackpoolfree(x gclinkptr, order uint8) {
		stack.go#L286: 	var list gclinkptr
		stack.go#L379: 		var x gclinkptr
		stack.go#L508: 		x := gclinkptr(v)